.custom-photo-slider {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: #fafafa;
  padding: 50px 0;
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.9s ease;
  will-change: transform;
}

.slide {
  flex: 0 0 calc((100% - 48px) / 3);
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* TABLET */
@media (max-width: 1200px) {
  .slide {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

/* MOBIL */
@media (max-width: 600px) {
  .slide {
    flex: 0 0 100%;
  }
}

/* DOTS */
.slider-dots {
  text-align: center;
  margin-top: 20px;
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 5px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
}

.dot.active {
  background: #333;
}